home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Dom i biuro / Crimson Editor 3.70 / cedt370r.exe / template / hello world program.for < prev    next >
Text File  |  2002-07-17  |  174b  |  8 lines

  1. C Basic template file for FORTRAN
  2.  
  3.         PROGRAM MAIN
  4.         CHARACTER*11 STR
  5.         STR = 'hello world'
  6.           PRINT 10, STR
  7.      10 FORMAT( 1X, A11 )
  8.         END